home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / ASTRNOMY / EPHEM421.ZIP / MAKEFILE < prev    next >
Text File  |  1990-09-13  |  1KB  |  85 lines

  1. # Makefile for ephem
  2.  
  3. CFLAGS = -O
  4.  
  5. EPHEM=    aa_hadec.o altmenus.o anomaly.o cal_mjd.o circum.o comet.o compiler.o \
  6.     eq_ecl.o flog.o formats.o io.o listing.o main.o mainmenu.o moon.o \
  7.     moonnf.o nutation.o objx.o obliq.o parallax.o pelement.o plans.o \
  8.     plot.o popup.o precess.o reduce.o refract.o riset.o riset_c.o \
  9.     sel_fld.o sex_dec.o srch.o sun.o time.o utc_gst.o version.o watch.o
  10.  
  11. ephem:    $(EPHEM)
  12.     cc -o $@ $(EPHEM) -ltermcap -lm
  13.  
  14. aa_hadec.o:    astro.h
  15.  
  16. altmenus.o:    astro.h circum.h screen.h
  17.  
  18. anomaly.o:    astro.h
  19.  
  20. cal_mjd.o:    astro.h
  21.  
  22. circum.o:    astro.h circum.h screen.h
  23.  
  24. comet.o:    astro.h
  25.  
  26. compiler.o:    screen.h
  27.  
  28. eq_ecl.o:    astro.h
  29.  
  30. flog.o:        screen.h
  31.  
  32. formats.o:    astro.h screen.h
  33.  
  34. io.o:        screen.h
  35.  
  36. listing.o:    screen.h
  37.  
  38. main.o:        astro.h circum.h screen.h
  39.  
  40. mainmenu.o:    astro.h circum.h screen.h
  41.  
  42. moon.o:        astro.h
  43.  
  44. moonnf.o:    astro.h
  45.  
  46. nutation.o:    astro.h
  47.  
  48. objx.o:        astro.h circum.h screen.h
  49.  
  50. obliq.o:    astro.h
  51.  
  52. parallax.o:    astro.h
  53.  
  54. pelement.o:    astro.h
  55.  
  56. plans.o:    astro.h
  57.  
  58. plot.o:        screen.h
  59.  
  60. popup.o:    screen.h
  61.  
  62. precess.o:    astro.h
  63.  
  64. reduce.o:    astro.h
  65.  
  66. refract.o:    astro.h
  67.  
  68. riset.o:    astro.h
  69.  
  70. riset_c.o:    astro.h circum.h screen.h
  71.  
  72. sel_fld.o:    screen.h
  73.  
  74. srch.o:        screen.h
  75.  
  76. sun.o:        astro.h
  77.  
  78. time.o:        astro.h circum.h
  79.  
  80. utc_gst.o:    astro.h
  81.  
  82. version.o:    screen.h
  83.  
  84. watch.o:    astro.h circum.h screen.h
  85.